home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 037a / tsrcom31.zip / TSR.DOC < prev    next >
Text File  |  1991-11-04  |  49KB  |  1,139 lines

  1.                         TSR Utilities Version 3.1
  2.                              Kim Kokkonen
  3.                           TurboPower Software
  4.                                11/04/91
  5.  
  6. Table of Contents
  7. ---------------------------------------------------------------------
  8. 1. Introduction
  9. 2. MARK, FMARK, and RELEASE
  10. 3. MARKNET and RELNET
  11. 4. WATCH and DISABLE
  12. 5. MAPMEM, RAMFREE, and DEVICE
  13. 6. EATMEM
  14. 7. Known Limitations
  15. 8. Version History
  16. 9. Copyright and License Information
  17.  
  18. 1. Introduction
  19. ---------------------------------------------------------------------
  20. The TSR Utilities are a collection of programs useful for managing DOS
  21. memory, particularly for managing memory-resident programs, also known
  22. as TSR's. TSR stands for "Terminate and Stay Resident". The most
  23. popular use of these utilities is for removing TSR's from memory
  24. without rebooting the PC. There are many other uses, however,
  25. especially if you are a software developer.
  26.  
  27. The TSR Utilities have grown to include 11 programs. Here's a quick
  28. overview of each one:
  29.  
  30.   MARK     marks a position in memory above which TSR's can be
  31.            released.
  32.   RELEASE  removes TSR's from memory.
  33.   FMARK    performs the same function as MARK but uses less memory.
  34.   MARKNET  like MARK, but saves a more complete picture of system
  35.            status.
  36.   RELNET   removes TSR's marked with MARKNET.
  37.   WATCH    a TSR itself, it keeps records of other TSR's.
  38.   DISABLE  disables or reactivates TSR's, leaving them in memory.
  39.   RAMFREE  shows how much RAM memory is available.
  40.   MAPMEM   shows what memory resident programs are loaded.
  41.   DEVICE   shows what device drivers are loaded.
  42.   EATMEM   uses up memory for controlled program testing.
  43.  
  44. These programs are described in detail in the following sections. If
  45. you haven't used them before, be sure to read the documentation: All
  46. of the programs are command line driven, and unexpected events may
  47. occur if you just start typing the program names at the DOS command
  48. line. Also be sure to read section 7, "Known Limitations".
  49.  
  50. The most notable feature of TSR Utilities version 3.0 is support for
  51. MS-DOS 5.0 and TSR's loaded in high memory. If you're familiar with
  52. previous versions of the TSR Utilities, see the file TSR30.DOC for a
  53. summary of the changes in version 3.0. Version 3.1 cleans up bugs and
  54. compatibility problems discovered in 3.0.
  55.  
  56.  
  57. 2. MARK, FMARK, and RELEASE
  58. ---------------------------------------------------------------------
  59. MARK.COM and RELEASE.EXE are used to remove TSR's from memory, without
  60. requiring a system reboot. In their simplest form, MARK and RELEASE
  61. are used as follows:
  62.  
  63. 1. Run MARK before installing your TSR(s). This marks the current
  64. position in memory and stores information that RELEASE will later need
  65. to restore the system. A common place to call MARK is in your
  66. AUTOEXEC.BAT file.
  67.  
  68. 2. Install whatever TSR's you want, using the normal method for each
  69. TSR.
  70.  
  71. 3. To remove those TSR's from memory, run RELEASE. This will release
  72. all of the memory above (and including) the last MARK, and will
  73. restore the system to the state at the time the MARK was made.
  74.  
  75. There are a number of variations of this simple method. If you want to
  76. release TSR's loaded in high memory under DOS 5, be sure to read the
  77. remainder of this section for instructions on how to do so.
  78.  
  79. MARKs can be stacked in memory, as shown in the following hypothetical
  80. batch file:
  81.  
  82.     MARK
  83.     TSR1
  84.     MARK
  85.     TSR2
  86.     MARK
  87.     TSR3
  88.  
  89. Each call to RELEASE releases memory above and including the last
  90. MARK. In this example, the first call to RELEASE would remove TSR3 and
  91. the last MARK from memory, the second call would remove TSR2 and its
  92. MARK, and so on.
  93.  
  94. MARK and RELEASE may be called using a command line parameter. The
  95. parameter specifies a "mark name" and allows releasing TSR's to a
  96. specific point in memory. Consider the following example:
  97.  
  98.     MARK TSR1
  99.     TSR1
  100.     MARK TSR2
  101.     TSR2
  102.     MARK TSR3
  103.     TSR3
  104.  
  105. This loads the three TSR's just as in the previous example. However,
  106. if RELEASE were called like this,
  107.  
  108.     RELEASE TSR2
  109.  
  110. then both TSR2 and TSR3 would be removed from memory. Note that the
  111. use of such a name does not allow just a single layer of TSR's to be
  112. removed (just TSR2, for example). RELEASE always removes all TSR's
  113. including and beyond the one named.
  114.  
  115. A mark name is any string up to 126 characters long. The name may not
  116. include white space (blanks or tabs). Case (upper or lower) is not
  117. significant when matching mark names.
  118.  
  119. When named marks are used as in this example, calling RELEASE without
  120. specifying a mark name will still remove the last TSR from memory.
  121. Assuming that TSR1, TSR2, and TSR3 were still in memory, typing just
  122. RELEASE would remove TSR3 and the last mark. It is possible to change
  123. this behavior by using "protected marks", which can be released only
  124. by explicitly specifying their names. A protected mark is placed by
  125. giving it a name that starts with an exclamation point, '!'. Consider
  126. the following:
  127.  
  128.     MARK TSR1
  129.     TSR1
  130.     MARK TSR2
  131.     TSR2
  132.     MARK !TSR3
  133.     TSR3
  134.  
  135. Here !TSR3 specifies a protected mark. Typing just RELEASE would
  136. produce an error message "No matching marker found, or protected
  137. marker encountered". The same error would occur after entering the
  138. command RELEASE TSR2. When this error occurs, RELEASE does not remove
  139. any TSR's from memory.
  140.  
  141. The only way to remove TSR3 in this case is by entering
  142.  
  143.     RELEASE !TSR3
  144.  
  145. Each time a MARK is placed in memory, it consumes about 1600 bytes of
  146. RAM space, which is used to store a copy of the system interrupt
  147. vector table and other information with which RELEASE can later
  148. restore the system. Although 1600 bytes isn't very much, we can reduce
  149. this memory usage by storing the information in a disk file rather
  150. than in memory. FMARK.COM is a variation on MARK that does just that.
  151. You can call FMARK at any time that you would call MARK. FMARK uses
  152. only about 150 bytes of memory.
  153.  
  154. All calls to FMARK must include a command line parameter to specify
  155. the name of the file:
  156.  
  157.     FMARK [d:][directory]filename
  158.  
  159. You should generally specify a complete pathname for the mark file.
  160. When you later call RELEASE, you must give it the identical pathname,
  161. regardless of what the current directory happens to be at the time.
  162. For example, if you specified the following file mark
  163.  
  164.     FMARK C:\TEST\TEST.MRK
  165.  
  166. then the following calls to RELEASE would generate an error,
  167.  
  168.     RELEASE TEST.MRK
  169.     RELEASE C:TEST.MRK
  170.  
  171. even if the current directory on drive C: was \TEST. The only way to
  172. call RELEASE is with
  173.  
  174.     RELEASE C:\TEST\TEST.MRK
  175. or
  176.     release c:\test\test.mrk
  177.  
  178. RELEASE can use either type of mark: in-memory or on-disk. Note that
  179. file marks placed by FMARK are never treated as protected marks,
  180. although of course their names must be passed to RELEASE in order to
  181. remove them directly.
  182.  
  183. Consider the following example:
  184.  
  185.     MARK TSR1
  186.     TSR1
  187.     FMARK C:\MARKS\TSR2.MRK
  188.     TSR2
  189.  
  190. Typing just RELEASE in this situation generates the warning message
  191. "No matching marker found, or protected marker encountered", because
  192. the file mark's name has not been provided.
  193.  
  194. TSR2 can be removed from memory by entering
  195.  
  196.     RELEASE C:\MARKS\TSR2.MRK
  197.  
  198. RELEASE deletes the mark file when it has finished.
  199.  
  200. Alternatively, TSR2 and TSR1 could be removed at the same time by
  201. typing
  202.  
  203.     RELEASE TSR1
  204.  
  205. MARK may be called with one optional command line parameter:
  206.  
  207.     /Q         write no screen output.
  208.  
  209. The /Q option is useful when you are using MARK in an integrated
  210. system. Note that redirecting MARK's output wastes system file handles
  211. and should never be done.
  212.  
  213. RELEASE has several command line options to modify its behavior. The
  214. following table lists the options, which must start with a slash, '/',
  215. or a hyphen, '-'.
  216.  
  217.     /E         do NOT access EMS memory.
  218.     /K         release memory, but keep the mark in place.
  219.     /Q         write no screen output.
  220.     /S chars   stuff string (<16 chars) into keyboard buffer on exit.
  221.     /U         consider upper memory blocks for release (DOS 5).
  222.     /?         write this help screen.
  223.  
  224. None of the options is required for normal use of RELEASE.
  225.  
  226. /E is made available for systems running early, buggy EMS (expanded
  227. memory) drivers that don't correctly implement all of the EMS 3.2
  228. system calls. Don't use it unless you have an EMS-related problem
  229. during or after running RELEASE.
  230.  
  231. /K is useful when you will be releasing and reloading a TSR
  232. repeatedly. With it, you avoid the need to replace the mark each time
  233. the TSR is released. Using /K in combination with a file mark also
  234. prevents RELEASE from deleting the mark file.
  235.  
  236. /Q prevents RELEASE from writing any screen output (unless an error
  237. occurs). This is useful when you are using RELEASE in an integrated
  238. system. Note that redirecting RELEASE's output causes technical
  239. problems and should not be done.
  240.  
  241. /S followed by at least one space and then a short string (15
  242. characters or fewer) tells RELEASE to stuff this string into the
  243. keyboard buffer just before exiting. RELEASE automatically adds a
  244. carriage return to the end of the string. The string may not contain
  245. tabs or spaces.
  246.  
  247. To explain why the /S option is important, we must digress a moment.
  248. Let's assume that you normally keep SideKick loaded, but that you must
  249. unload it in order to have enough memory free to run Lotus 1-2-3. It
  250. would seem reasonable to write a little batch file like this:
  251.  
  252.    RELEASE SK
  253.    LOTUS
  254.    MARK SK
  255.    SK
  256.  
  257. which would remove the previously loaded SideKick from memory, run
  258. Lotus, and then load SideKick again. Unfortunately, this won't work!
  259.  
  260. The reason is complicated to explain. It must suffice here to say that
  261. DOS batch files trap memory, and the memory freed by a call to RELEASE
  262. does not truly become available until the current batch file ends.
  263.  
  264. Now perhaps the need for the /S option becomes clear. We can split the
  265. previous batch file into two:
  266.  
  267.   batch1:
  268.     RELEASE SK /S BATCH2
  269.  
  270.   batch2:
  271.     LOTUS
  272.     MARK SK
  273.     SK
  274.  
  275. The first batch file releases the memory and stuffs the characters
  276. 'BATCH2<Enter>' into the keyboard buffer. When the batch file ends,
  277. the released memory becomes available. DOS automatically reads the
  278. keystrokes waiting in the buffer and starts up the second batch file,
  279. which runs Lotus and later reloads SideKick.
  280.  
  281. To keep things simple, the /S option pokes the specified keystrokes
  282. directly into the system keyboard buffer. As a result, the number of
  283. keystrokes is limited to 15 (not counting the <Enter> key, which
  284. RELEASE adds automatically). This always allows enough keys to start
  285. another batch file, however, and the new batch file can take over from
  286. there.
  287.  
  288. RELEASE detects when it is releasing memory within a batch file. It
  289. writes a warning message to that effect, but continues processing
  290. anyway under the assumption that the batch file is about to end. You
  291. can ignore the warning if you've already taken account of DOS's memory
  292. management behavior within batch files.
  293.  
  294. The /U option is required when you are releasing a TSR that has been
  295. loaded into high memory (memory between 640K and 1 megabyte) under
  296. MS-DOS 5.0. It may be appropriate even for a TSR loaded into low
  297. memory, if other TSR's have been loaded into high memory.
  298.  
  299. The high memory features of TSR Utilities version 3.0 are available
  300. only if you are running DOS 5.0. Note, however, that recent versions
  301. of QEMM386 and 386MAX respect the DOS 5.0 upper memory architecture
  302. and thus the TSR Utilities will work correctly if you're using these
  303. versions of QEMM386 or 386MAX with DOS 5.0. In some cases it is
  304. necessary to put the one of the following statements in your
  305. CONFIG.SYS file:
  306.  
  307.   DOS=HIGH,UMB
  308. -or-
  309.   DOS=UMB
  310.  
  311. The following table provides compatibility details on recent versions
  312. that we've tested:
  313.  
  314. Memory Manager  Compatibility with TSR Utilities upper memory features
  315. --------------  ------------------------------------------------------
  316. 386MAX  5.12    ok (don't put UMB in CONFIG.SYS)
  317. 386MAX  5.11    ok (don't put UMB in CONFIG.SYS)
  318. 386MAX  5.10    not compatible
  319. 386MAX  5.00    not compatible
  320.  
  321. QEMM386 6.00    ok (requires UMB in CONFIG.SYS)
  322. QEMM386 5.11    not compatible
  323.  
  324. If you have other memory managers, we'd like to hear your results. Try
  325. MAPMEM /U with and without DOS=UMB in your CONFIG.SYS. If you get a
  326. high memory report from MAPMEM, and if your memory manager is still
  327. able to load TSR's into high memory, then you can assume that the
  328. memory manager is compatible with TSR Utilities 3.0.
  329.  
  330. Note that even if the table says "not compatible" you can still use
  331. the TSR Utilities 3.0 without upper memory support.
  332.  
  333. If you're using just the high memory features of MS-DOS 5.0 itself,
  334. without additional memory managers, note that you must have at least
  335. the following in your CONFIG.SYS in order for the TSR Utilities to
  336. access high memory:
  337.  
  338.   DEVICE=HIMEM.SYS
  339.   DEVICE=EMM386.SYS RAM
  340.   DOS=UMB
  341.  
  342. See the discussion of the EMM386.SYS driver in your MS-DOS 5.0
  343. documentation for more information about options compatible with
  344. creating upper memory blocks.
  345.  
  346. The /U option causes a fundamental change in the behavior of RELEASE.
  347. It is important that you understand what it does in order to use it
  348. properly.
  349.  
  350. When the /U option is *not* specified, RELEASE removes programs in
  351. address order. That is, with a few exceptions, it deallocates any
  352. memory blocks that have a memory address greater than or equal to that
  353. of the mark.
  354.  
  355. This behavior is almost never appropriate when TSR's are loaded high.
  356. When high memory is involved, the *chronological* order in which TSR's
  357. were loaded rarely matches the *address* order in which they were
  358. loaded. Before TSR's could be loaded high, these two orderings were
  359. usually the same, so no distinction was necessary. Now, however, it's
  360. common to load one program high, then one low, then another high; or
  361. to load one program into "region 2" of high memory, then another into
  362. "region 1", and so on.
  363.  
  364. Therefore, when the /U option is activated, RELEASE frees memory in
  365. *chronological* order. That is, it frees all memory blocks allocated
  366. since the time the mark was placed, regardless of the address position
  367. of the memory. Additional information is now stored in the mark file
  368. or memory image to allow this to occur. Only when /U is specified does
  369. RELEASE access high memory.
  370.  
  371. If you have *any* TSR's loaded into high memory, you should use the /U
  372. option, even if the particular TSR you're unloading is located in low
  373. memory. Depending on the chronological order in which you loaded the
  374. TSR's, an unload from low memory may also trigger unloads from high
  375. memory, or vice versa.
  376.  
  377. When you intend to use the /U option, you must provide a unique mark
  378. name for each mark (because there is no unambiguous way to find the
  379. correct unnamed mark). Note that a mark name is inherent in the
  380. filename specified to FMARK.
  381.  
  382. Because of the chronological nature of RELEASE /U, you can load the
  383. MARK high and the associated TSR low (or vice versa) if desired.
  384.  
  385.  
  386. 3. MARKNET and RELNET
  387. ---------------------------------------------------------------------
  388. Use of these utilities is very similar to that described in the
  389. preceding section. MARKNET is analogous to FMARK, and RELNET is like
  390. RELEASE. MARKNET stores more information about the system's status
  391. than does MARK, so it is appropriate for managing TSR's, such as
  392. network shells, that hook into the system at a low level.
  393.  
  394. Because MARKNET stores so much information about the system, it always
  395. writes the data to a disk file in order to reduce its own memory
  396. usage.
  397.  
  398. Command line syntax for MARKNET and RELNET is:
  399.  
  400.   MARKNET [d:][directory]filename [/Q]
  401.   RELNET  [d:][directory]filename [options]
  402.  
  403. The main command line parameter to each program specifies the name of
  404. the file where the mark information will be stored. We refer to this
  405. file as the net mark file. A complete pathname should be specified for
  406. the net mark file. RELNET's pathname must exactly match that passed to
  407. MARKNET, with the exception of case.
  408.  
  409. Note that MARKNET and RELNET may be used in almost any situation where
  410. FMARK and RELEASE are used. MARKNET saves all of the same system
  411. information as does FMARK, but it goes further to store information
  412. such as the device driver chain, DOS internal variable areas, DOS
  413. system file tables, DOS environment, communications port status, XMS
  414. memory state, and other information. Nevertheless, MARKNET and RELNET
  415. were written primarily because of the large demand to release the
  416. NetWare shell. We'll refer to NetWare specifically in the following
  417. and provide an example of how to load and release it.
  418.  
  419. The only new restriction for using MARKNET is that the system must be
  420. running DOS version 3.0 or later. MARKNET depends on the format of
  421. certain internal DOS data structures that were quite different in DOS
  422. version 2.
  423.  
  424. Like FMARK, MARKNET leaves a small (144-192) byte mark in memory, and
  425. writes a disk file to store the system status. MARKNET's file varies
  426. in size, but is typically 3-4K bytes. The size depends on the number
  427. of device drivers, the value of the 'FILES=' directive in CONFIG.SYS,
  428. the number of EMS and XMS memory blocks allocated, and other DOS
  429. implementation details.
  430.  
  431. Do not attempt to redirect the output of MARKNET. Doing so will waste
  432. at least one file handle that cannot be recovered later by RELNET.
  433. MARKNET's /Q option is provided to prevent it from writing any screen
  434. output.
  435.  
  436. Marks placed with MARK, FMARK, and MARKNET may be mixed in the same
  437. system. RELEASE treats all marks placed with MARKNET as protected;
  438. such marks may be released only by calling RELNET explicitly. Consider
  439. the following example:
  440.  
  441.   MARK TSR1
  442.   TSR1
  443.   FMARK C:\MARKS\TSR2.MRK
  444.   TSR2
  445.   MARKNET C:\MARKS\TSR3.MRK
  446.   TSR3
  447.  
  448. Entering RELEASE by itself would generate a warning and do nothing
  449. else. Entering RELEASE C:\MARKS\TSR2.MRK would generate the same
  450. warning. The only way to get all three of these TSR's out of memory
  451. would be to enter the following commands in sequence:
  452.  
  453.   RELNET C:\MARKS\TSR3.MRK
  454.   RELEASE C:\MARKS\TSR2.MRK
  455.   RELEASE TSR
  456.  
  457. RELNET has options to control how much of the system state it
  458. restores. Several of the options match those of RELEASE; new ones are
  459. also provided to control the additional information that MARKNET
  460. stores. RELNET accepts the following options:
  461.  
  462.   /C        do NOT restore the communications ports.
  463.   /E        do NOT access EMS memory.
  464.   /I        do NOT shut down IPX events and sockets.
  465.   /K        release memory, but keep the mark in place.
  466.   /P        do NOT restore DOS environment.
  467.   /Q        write not screen output.
  468.   /R        revector 8259 interrupt controller to powerup state.
  469.   /S chars  stuff string (<16 chars) into keyboard buffer on exit.
  470.   /T        do NOT reset the system timer chip.
  471.   /U        consider upper memory blocks for release.
  472.   /V        verbose: show each step of the restore.
  473.   /X        do NOT access XMS memory.
  474.   /?        write help screen.
  475.  
  476. None of these options, except perhaps /U, is required in order to
  477. release the NetWare workstation shell.
  478.  
  479. /C prevents RELNET from restoring the communications state of the
  480. system (as encoded in the 8250 async chip and the 8259 programmable
  481. interrupt controller). Because both of these chips provide readable
  482. registers, MARKNET is able to store an accurate picture of the
  483. communications state when the mark is stored; RELNET can restore the
  484. state to exactly what it was. Therefore, the /C option should be
  485. needed rarely, perhaps only on newer PS/2 models that don't use the
  486. 8250 as a communications controller. Note that MARKNET stores
  487. information only about COM1 and COM2.
  488.  
  489. /E is made available for systems running early, buggy EMS drivers that
  490. don't correctly implement all of the EMS 3.2 system calls. Don't use
  491. it unless you have an EMS-related problem during or after running
  492. RELNET.
  493.  
  494. /I prevents RELNET from detecting and deactivating IPX events and
  495. sockets owned by the memory blocks being released. Don't use it unless
  496. it solves a problem for you.
  497.  
  498. /K is useful when you will be releasing and reloading a TSR
  499. repeatedly. With it, you avoid the need to replace the mark each time
  500. the TSR is released. Using /K prevents RELNET from deleting the net
  501. mark file.
  502.  
  503. /P keeps RELNET from restoring the DOS environment, which it normally
  504. does because NetWare modifies the DOS PATH. In some cases, other
  505. changes to the environment should not be undone; use the /P switch
  506. only when such changes must be preserved.
  507.  
  508. /Q prevents RELNET from writing any screen output (unless an error
  509. occurs). This is useful when you are using RELNET in an integrated
  510. system. Note that redirecting RELNET's output causes technical
  511. problems and should never be done.
  512.  
  513. /R may be useful for unloading task-switching utilities that
  514. "revector" the hardware interrupt controller. Use it only if it solves
  515. a problem.
  516.  
  517. /S followed by at least one space and then a short string (15
  518. characters or fewer) tells RELNET to stuff this string into the
  519. keyboard buffer just before exiting. RELNET automatically adds a
  520. carriage return to the end of the string. The string may not contain
  521. tabs or spaces. See the discussion of /S in the preceding section for
  522. more details.
  523.  
  524. /T keeps RELNET from resetting the system timer chip to its default
  525. rate, which it does by default.
  526.  
  527. /U allows RELNET to access high memory under DOS 5.0. See the
  528. discussion of high memory in the previous section for more
  529. information.
  530.  
  531. /V activates additional status reporting during the release and may
  532. provide useful information in cases when RELNET isn't working.
  533.  
  534. /X prevents RELNET from restoring the state of XMS (extended) memory.
  535. This option is provided in case of an unforeseen conflict with an XMS
  536. memory driver.
  537.  
  538. The following is a simple version of a NetWare LOGIN.BAT file with
  539. support for releasing the shell:
  540.  
  541.   rem place the mark
  542.       marknet C:\NET\NETWARE.MRK
  543.  
  544.   rem load the NetWare shell TSR's
  545.       ipx
  546.       net3
  547.   rem optional portions of the shell
  548.   rem netbios
  549.   rem int2f
  550.  
  551.   rem switch to login drive and log in
  552.       F:
  553.       login USERNAME
  554.  
  555. At a minimum, the items in uppercase will need to be customized for a
  556. given user and workstation.
  557.  
  558. NetWare could then be released with the following batch file:
  559.  
  560.   rem let the server know we're leaving
  561.       z:\public\logout
  562.   rem restore the workstation
  563.       relnet C:\NET\NETWARE.MRK
  564.  
  565. As of TSR Utilities version 3.0, you may release the NETBIOS emulator
  566. independently from NETx and IPX. You should always release NETx and
  567. IPX together.
  568.  
  569.  
  570. 4. WATCH and DISABLE
  571. ---------------------------------------------------------------------
  572. WATCH.COM is a memory-resident program that keeps track of other
  573. memory resident programs. As a TSR goes resident, WATCH updates a data
  574. area in memory that contains information about what interrupt vectors
  575. were taken over. This information can later be used by MAPMEM and
  576. DISABLE to show more details about interrupts than normally available.
  577.  
  578. Installation of WATCH.COM is optional. All of the TSR Utilities except
  579. DISABLE can be used whether or not WATCH is installed.
  580.  
  581. If you want to use it, WATCH.COM should be installed as one of the
  582. first TSR's in your AUTOEXEC.BAT file. WATCH may be loaded into low
  583. memory or, under MS-DOS 5.0, into high memory.
  584.  
  585. WATCH uses about 3100 bytes of memory when it is installed. Most of
  586. this memory holds various information about the TSR's installed in the
  587. system -- it includes a copy of the interrupt vector table and a data
  588. area containing a list of the interrupt vectors taken over by each
  589. TSR. This information is used by DISABLE to deactivate and reactivate
  590. TSR's without removing them from memory. It is also used by MAPMEM to
  591. report more accurately on the interrupt vectors trapped by each TSR.
  592.  
  593. With DISABLE.EXE, you can disable and reenable specified memory
  594. resident programs without removing them from memory. Its function is
  595. analogous to that performed by REFEREE from Persoft, although DISABLE
  596. has neither a fancy user interface nor an option to work from within
  597. other programs. DISABLE can allow conflicting TSR's to coexist, and it
  598. can let you run applications whose keystrokes conflict with those of
  599. TSR's already loaded. DISABLE also provides a small bonus in that it
  600. can be used to detect the presence of a particular TSR in memory, thus
  601. allowing the design of semi-intelligent batch files. (Note that, as of
  602. version 3.0, MAPMEM also can detect the presence of a particular TSR,
  603. without requiring that WATCH be loaded.)
  604.  
  605. In order to use DISABLE, you must install WATCH.COM prior to loading
  606. any TSR that you wish to disable. WATCH keeps the detailed information
  607. about each memory resident program that DISABLE uses to later control
  608. them.
  609.  
  610. Like the other TSR Utilities, DISABLE is operated from the command
  611. line. You specify a single TSR by its name (if you are running DOS 3.0
  612. or later) or by its address as determined from a MAPMEM report
  613. (described below). If you specify an address, immediately precede the
  614. address with a dollar sign "$" and specify the address in hexadecimal.
  615.  
  616. The name specified for a TSR is the one reported by MAPMEM in the
  617. "Name" column. If this column reports "n/a", then you must instead
  618. specify the address from the "PSP" column.
  619.  
  620. DISABLE accepts the following command line syntax:
  621.  
  622.   DISABLE TSRname|$PSPaddress [options]
  623.  
  624. Options may be preceded by either / or -. Valid options
  625. are as follows:
  626.  
  627.      /A     reactivate the specified TSR.
  628.      /C     check for the presence of the specified TSR.
  629.      /O     disable the TSR even if dangerous (Override).
  630.      /Q     write no screen output.
  631.      /U     work with upper memory blocks (DOS 5).
  632.      /?     write a help screen.
  633.  
  634. If no option is specified, DISABLE will disable the named TSR. When /A
  635. is specified, a previously disabled TSR is reenabled.
  636.  
  637. /C causes DISABLE simply to check for the presence of a TSR. It writes
  638. an appropriate screen message and returns a DOS ERRORLEVEL to indicate
  639. whether the TSR is currently in memory: 0 if the TSR is present, 2 if
  640. it is not present, 254 or higher if an error occurs.
  641.  
  642. /O allows DISABLE to proceed with disabling a TSR even if internal
  643. checks indicate that it isn't safe to do so. Use this option only
  644. after careful experimentation indicates that it is safe to do so.
  645.  
  646. /Q prevents DISABLE from writing any screen output. DOS ERRORLEVEL is
  647. still set to allow batch files to determine the results.
  648.  
  649. /U allows DISABLE to access MS-DOS 5.0 upper memory blocks. You cannot
  650. disable a TSR loaded high without using this option. As with RELEASE
  651. and RELNET, you must generally have the statement DOS=HIGH,UMB in your
  652. CONFIG.SYS in order to use the DISABLE /U option.
  653.  
  654. DISABLE sets the DOS ERRORLEVEL in order to return status information
  655. to a batch file. It uses the following values of errorlevel:
  656.  
  657.   0       success: TSR is present, was disabled, or was reenabled.
  658.   1       TSR is present, but no action was required to enable or disable it.
  659.   2       TSR is not present in memory.
  660.   254     invalid command line.
  661.   255     severe error.
  662.  
  663. Examples of using DISABLE:
  664.  
  665.   DISABLE SK              disables SideKick
  666.   DISABLE SK /A           reenables SideKick
  667.   DISABLE SK /C           checks for the presence of SideKick
  668.   DISABLE SK /U           disables SideKick when it was loaded into
  669.                           high memory
  670.   DISABLE $2F2E           disables the TSR at address 2F2E (hex)
  671.  
  672.  
  673. 5. MAPMEM, RAMFREE, and DEVICE
  674. ---------------------------------------------------------------------
  675. These three utilities provide status information about DOS memory
  676. usage. They don't make active changes to the system like RELEASE and
  677. DISABLE do.
  678.  
  679. MAPMEM.EXE displays a map of DOS memory. It shows the resident
  680. programs, how much memory they use, and what interrupt vectors each
  681. one controls. MAPMEM also shows information about expanded and
  682. extended memory when available.
  683.  
  684. MAPMEM writes to the standard output -- hence, the output can be
  685. printed or stored to a file by using DOS redirection.
  686.  
  687. Here is an example of MAPMEM output:
  688.  
  689. MAPMEM 3.0, Copyright 1991 TurboPower Software
  690.  
  691. Psp  Cnt   Size Name       Command Line        Hooked Vectors
  692. ---- --- ------ ---------- ------------------- ----------------------
  693.       2  74,704 DOS
  694. 1240  2   3,296 4DOS                           2E
  695.       1      80 ---free---
  696. 1316  1     464 MODE
  697. 133B  2   9,216 DESKPOP    /k /x /1            05 08 09 13 16 25 26 28
  698. 157F  2   3,296 TPE                            1B
  699. 164F  3   3,328 4dos       /e /x /u            22 23 24 2F
  700. 1722  2 560,736 ---free---
  701.         655,360 ---total--
  702.  
  703. EMS Memory
  704. 0000     16,384 n/a
  705.         770,048 ---free---
  706.       1,048,576 ---total--
  707.  
  708. XMS Memory
  709. 0001    409,600 n/a
  710. 0002    266,240 n/a
  711. 0003     73,728 n/a
  712. 0004    568,320 n/a
  713. 0005     22,528 n/a
  714.          35,840 ---free---
  715.       1,376,256 ---total--
  716.  
  717. "Psp" stands for Program Segment Prefix. This is the physical address,
  718. specified in hexadecimal, where the program was loaded. If you're
  719. running DOS 2.x, you'll need to use an address from this column to
  720. pass to DISABLE.
  721.  
  722. "Cnt" is the number of memory blocks DOS is using to manage the
  723. program. This will typically be two: one for the program itself and
  724. another for the environment that stores the program name, the DOS
  725. path, and other environment variables.
  726.  
  727. "Size" is the number of bytes of memory, specified in decimal,
  728. allocated to the program.
  729.  
  730. The "Name" column shows the name of the program that allocated the
  731. block. An "n/a" in this column means either that the program
  732. deallocated its environment to reduce memory usage or that the system
  733. is running DOS 2.x, where the owner names are simply not available.
  734. Note that, under MS-DOS 5.0, an alternate method allows MAPMEM to find
  735. the TSR name even if it deallocated its environment.
  736.  
  737. "Command line" shows the command line entered when the TSR was
  738. originally loaded. Some TSR's overwrite their command line with other
  739. code or data in order to save memory space. MAPMEM can usually detect
  740. this behavior and will display "n/a" in the command line column when
  741. it does.
  742.  
  743. The last column will be titled as either "Chained vectors" or
  744. "Hooked vectors". When WATCH is loaded, "Chained" will appear;
  745. otherwise, "Hooked" will. The numbers in this column indicate what
  746. interrupt vectors the TSR has grabbed. Without WATCH, MAPMEM must use
  747. a heuristic technique to identify the owner of each vector; don't be
  748. surprised if you see some ridiculous looking vector numbers. With
  749. WATCH, MAPMEM should report an accurate list for each TSR, and should
  750. show the complete chain of control for each interrupt.
  751.  
  752. MAPMEM indicates disabled TSR's by displaying the word "disabled" in
  753. the interrupt vector column of the report.
  754.  
  755. MAPMEM displays free memory blocks with the notation "---free---", and
  756. the total amount of memory in a particular region with the notation
  757. "---total--".
  758.  
  759. On systems running MS-DOS 5.0, MAPMEM will also contain a section
  760. reporting memory used in the region between 640K and 1 megabyte. This
  761. section is interpreted just like the one for lower memory.
  762.  
  763. The expanded memory report shows each allocated block of expanded
  764. memory, as well as the free and total EMS space. If a program has
  765. assigned a name to an EMS memory block, that name will appear adjacent
  766. to the block size.
  767.  
  768. Similarly, when an XMS (extended) memory driver such as HIMEM.SYS is
  769. loaded, MAPMEM reports the blocks of allocated extended memory. A name
  770. is never available for XMS memory.
  771.  
  772. If extended memory is available and no HIMEM driver is loaded, MAPMEM
  773. will report the free and total amount of raw extended memory. These
  774. numbers can be misleading because some applications allocate extended
  775. memory by making it appear that the memory is no longer installed on
  776. the system.
  777.  
  778. MAPMEM offers the following command line options:
  779.  
  780.      /C name  check whether TSR "name" is loaded.
  781.      /E       report expanded (EMS) memory.
  782.      /F       report free areas only.
  783.      /H       do not use WATCH information for vectors.
  784.      /Q       write no screen output with /C option.
  785.      /S       show summary of all memory areas.
  786.      /U       report upper memory blocks (DOS 5).
  787.      /V       verbose report.
  788.      /X       report extended (XMS) memory.
  789.      /?       write this help screen.
  790.  
  791. When /C is specified, MAPMEM does not produce its normal report.
  792. Instead, it simply checks to see whether the named TSR is currently in
  793. memory. MAPMEM then writes an appropriate screen message, and also
  794. sets the DOS ERRORLEVEL so that a batch file can detect the results.
  795. MAPMEM returns errorlevel 2 if the TSR isn't loaded, 1 if there was a
  796. syntax error, and 0 if the TSR is in memory. Note that this option
  797. does *not* require WATCH to be loaded.
  798.  
  799. /E causes MAPMEM to generate its expanded memory report.
  800.  
  801. /F causes MAPMEM to report just the free areas in normal, high,
  802. expanded, and extended memory.
  803.  
  804. /H causes MAPMEM to report "hooked" vectors, even if WATCH is loaded.
  805.  
  806. /Q prevents MAPMEM from writing any screen output. This option is only
  807. meaningful in combination with the /C option.
  808.  
  809. /S generates a "summary" report. The report shows just the size, name,
  810. and command line of each program in conventional memory, including any
  811. free blocks. It also shows the free and total memory for EMS and XMS.
  812.  
  813. /U causes MAPMEM to write information about MS-DOS 5.0 high memory
  814. (upper memory blocks).
  815.  
  816. /V generates a verbose report instead of the standard report about
  817. normal and high memory. In this case, MAPMEM shows each individual
  818. memory block rather than just one for each program. It also adds two
  819. new columns of information. "Mcb" stands for Memory Control Block.
  820. This is a physical address, expressed in hexadecimal, of the DOS data
  821. structure used for managing each block of memory. The MCB address is
  822. typically one less than the address of the program. "Files" reports
  823. the number of files kept open by the TSR. In most cases this will be
  824. zero, in which case the corresponding column of the report is left
  825. blank. When it is non-zero, the maximum number of files opened by the
  826. rest of the programs (including the foreground application) is reduced
  827. accordingly.
  828.  
  829. When /V is active, MAPMEM also reports the memory allocation of each
  830. DOS device driver under DOS 5. It also shows details of memory
  831. associated with the interrupt vector table, the BIOS data area, and
  832. various DOS data areas.
  833.  
  834. RAMFREE.COM is a tiny program with a single purpose: to tell you how
  835. many bytes of memory are free for the next application. The number it
  836. reports is the same as that reported by (some versions of) the DOS
  837. CHKDSK utility. RAMFREE's advantage is that you don't need to wait for
  838. your hard disk to be analyzed before you find out how much memory is
  839. free.
  840.  
  841. DEVICE.EXE reports on device drivers installed by the CONFIG.SYS file.
  842. It shows the memory used by DOS itself, any additional drivers
  843. installed in CONFIG.SYS, and the space used for DOS file handles and
  844. buffers. Here is a simple example of DEVICE output:
  845.  
  846.  Address     Bytes   Name           Hooked vectors
  847. ---------   ------   -------------- --------------
  848. 0070:0BB3        -   CON
  849. 0070:0C68        -   AUX
  850. 0070:0C7A        -   COM1
  851. 0070:0D17        -   PRN
  852. 0070:0D29        -   LPT1
  853. 0070:0E15        -   CLOCK$
  854. 0070:0EE5        -   3 Block Units
  855. 0070:2071        -   LPT2
  856. 0070:2083        -   LPT3
  857. 0070:2095        -   COM2
  858. 0000:2C58    37712   NUL            08 0A 0C 0D 0E 13 25 26 29 31 70 72
  859.                                     73 74 75 76 77
  860. 09A5:0000     3488   0 Block Units
  861. 0A7F:0000       18   EMMXXXX0
  862. 0A7F:0012       46   386MAX$$       20
  863. 0A83:0000      768   1 Block Unit   19
  864. 0AB3:0000      768   1 Block Unit
  865. 0AE3:0000    18256   DOS buffers
  866.  
  867. The devices up to and including NUL are all part of DOS. DEVICE lumps
  868. their memory usage into a single value next to the NUL device. The
  869. memory usage associated with NUL does not include the interrupt vector
  870. table, the BIOS data area, or the low-memory DOS data area. If you
  871. wish to add this memory to the total, just take the hexadecimal
  872. segment of the first driver you see (in this case CON) and multiply it
  873. by 16 decimal. When the segment is 0070 as shown, that adds 1792 bytes
  874. to the total space for DOS.
  875.  
  876. DEVICE also lumps all of the drivers up to NUL into a single block
  877. when it comes to reporting hooked interrupt vectors. Because WATCH
  878. can't be installed prior to these device drivers, DEVICE must use an
  879. empirical technique to detect which vectors each driver controls.
  880. Therefore, some meaningless vectors may appear in the list. Any
  881. vectors that are grabbed by another program after the driver is loaded
  882. will not appear.
  883.  
  884. "Block units" typically refer to disk drives. Any drivers that appear
  885. after the NUL device are in the order that you've entered them in
  886. CONFIG.SYS. Drivers loaded for non-standard hard disks, like
  887. SpeedStor, sometimes make odd entries in the DEVICE report, as shown
  888. with "0 Block Units" above. RAM disks appear more logically: each of
  889. the "1 Block Unit" entries above is a VDISK with the data stored in
  890. extended memory.
  891.  
  892. Devices like 386MAX may also cause odd-looking entries: 386MAX puts
  893. most of its code in extended memory, and leaves just a bit behind in
  894. normal memory.
  895.  
  896. DEVICE offers the following command line options:
  897.  
  898.      /R     raw report.
  899.      /?     write a help screen.
  900.  
  901. The raw report shows more information about the device drivers, but in
  902. a less convenient format. Here's an example, taken on the same system
  903. as the previous report.
  904.  
  905.  Starting      Next             Strategy   Interrupt   Device
  906.  Address     Hdr Addr   Attr   Entry Pnt   Entry Pnt   Name
  907. ---------   ---------   ----   ---------   ---------   --------
  908. 0000:2C58   0AB3:0000   8004   0000:14C6   0000:14CC   NUL
  909. 0AB3:0000   0A83:0000   0800   0000:00A9   0000:00D4   1 Block Unit
  910. 0A83:0000   0A7F:0012   0800   0000:00A9   0000:00D4   1 Block Unit
  911. 0A7F:0012   0A7F:0000   C000   0000:0036   0000:003B   386MAX$$
  912. 0A7F:0000   09A5:0000   8000   0000:0036   0000:003B   EMMXXXX0
  913. 09A5:0000   0070:0BB3   2000   0000:0012   0000:001D   0 Block Units
  914. 0070:0BB3   0070:0C68   8013   0000:00C6   0000:00D1   CON
  915. 0070:0C68   0070:0D17   8000   0000:00C6   0000:00D7   AUX
  916. 0070:0D17   0070:0E15   A040   0000:00C6   0000:00E6   PRN
  917. 0070:0E15   0070:0EE5   8008   0000:00C6   0000:010C   CLOCK$
  918. 0070:0EE5   0070:0C7A   0840   0000:00C6   0000:0112   3 Block Units
  919. 0070:0C7A   0070:0D29   8000   0000:00C6   0000:00D7   COM1
  920. 0070:0D29   0070:2071   A040   0000:00C6   0000:00EC   LPT1
  921. 0070:2071   0070:2083   A040   0000:00C6   0000:00F4   LPT2
  922. 0070:2083   0070:2095   A040   0000:00C6   0000:00FC   LPT3
  923. 0070:2095   0070:FFFF   8000   0000:00C6   0000:00DD   COM2
  924.  
  925. In this report, the drivers are listed in DOS priority order rather
  926. than the order in which they are loaded in memory. Additional columns
  927. describe how DOS treats each driver. Ray Duncan's book "Advanced
  928. MS-DOS" is a good place to learn more about these details.
  929.  
  930. The DEVICE program assumes that all device drivers are loaded in the
  931. CONFIG.SYS file. That is not the case with the NetWare shell, which
  932. patches itself into the device driver chain. DEVICE will write a
  933. warning message and terminate before reporting the first patched-in
  934. driver. The raw device report will still show all of the devices even
  935. in this case.
  936.  
  937.  
  938. 6. EATMEM
  939. ---------------------------------------------------------------------
  940. EATMEM is a small program that is useful only to software developers.
  941. It is a TSR that consumes a specified amount of memory. Developers can
  942. use it to simulate a system with less memory, or to create a buffer
  943. zone between an application and programs preceding it.
  944.  
  945. The memory used by EATMEM can be freed only by using MARK and RELEASE.
  946.  
  947. Call EATMEM with a single command line parameter, specifying the
  948. (decimal) number of KILOBYTES to eat up:
  949.  
  950.   EATMEM KiloBytesToEat
  951.  
  952. For example, EATMEM 10 consumes 10K bytes of memory.
  953.  
  954. EATMEM will allow you to eat up all available memory, leading to a
  955. system crash when COMMAND.COM cannot be reloaded. Be sure to calculate
  956. how much memory to use before calling EATMEM.
  957.  
  958.  
  959. 7. Known Limitations
  960. ---------------------------------------------------------------------
  961. RELEASE and RELNET are capable of removing many, but not all, TSR's
  962. from memory. If you find that RELEASE doesn't successfully remove a
  963. TSR, try RELNET instead. Even with RELNET, however, some TSR's cannot
  964. be released without specific internal knowledge of the TSR. Since we
  965. don't have (or care about) all such TSR's, RELEASE and RELNET may not
  966. be compatible with them. If you find that RELNET won't release a TSR,
  967. there is little we can do to help you.
  968.  
  969. The most common examples of TSR's that we can't be released are those
  970. that cooperate with other TSR's in memory. Examples include
  971. Microsoft's MOUSE driver and its associated MENU program; and the
  972. program CED with its "user-installed commands" such as KEYIN, HS, RAW,
  973. and others. These programs can be released, but only if all the
  974. cooperating partners are released at the same time. CED is
  975. well-behaved in that it provides a built-in command (KILL) to release
  976. its partners. MOUSE is not so flexible, though.
  977.  
  978. Another problem TSR (and one that we hear about regularly) is the
  979. Token Ring IPX driver for Novell NetWare. For some reason, IBM
  980. designed this IPX driver in two pieces: one part that is loaded as a
  981. device driver in CONFIG.SYS and another that is loaded as a TSR in
  982. AUTOEXEC.BAT. RELNET does not release device drivers in general, and
  983. it cannot release the TSR portion of the Token Ring driver without
  984. also releasing the device driver portion.
  985.  
  986. You should almost never use RELEASE or RELNET to release disk caching
  987. programs. If you do so, part of the information that should be stored
  988. on disk will never be written there, and you may end up with a
  989. corrupted disk as a result. If you know that the disk cache uses a
  990. "write-through" algorithm (which guarantees that all writes
  991. immediately go to disk), or if the disk cache has a "flush the cache"
  992. command, then it may be safe to release the cache.
  993.  
  994. You cannot release the FASTOPEN and APPEND TSR's provided with DOS 3.3
  995. and later. These TSR's patch internal DOS data areas that cannot be
  996. reliably located even by MARKNET and RELNET.
  997.  
  998. You cannot use DISABLE to deactivate SideKick Plus, whose swapping
  999. technique is incompatible with DISABLE.
  1000.  
  1001. The TSR Utilities cannot access the high memory managed by DR DOS 6.0.
  1002.  
  1003.  
  1004. 8. Version History
  1005. ---------------------------------------------------------------------
  1006. If you're converting to this version from version 2.5 or earlier, be
  1007. sure to delete RELEASE.COM, DISABLE.COM, and MAPMEM.COM from your
  1008. directories. The new versions of these programs are EXE files instead
  1009. of COM files.
  1010.  
  1011. Always be sure to keep just one version of the TSR Utilities on your
  1012. disk. Many of the utilities cooperate with one another and require
  1013. matched versions to work correctly.
  1014.  
  1015. See the source code for the programs for more detailed information
  1016. about changes.
  1017.  
  1018. Version 3.1
  1019.   documentation
  1020.     - clarified compatibility issues with various versions of 386MAX
  1021.       and QEMM386
  1022.   MAPMEM
  1023.     - EMS report wasn't showing last EMS block
  1024.     - there was a name reporting problem with TSR's that shrink their
  1025.       environment block to zero size but don't deallocate it (found
  1026.       with FluShot+)
  1027.     - was leaving interrupts 0, 3F, and others pointing to itself
  1028.       after halting
  1029.     - wouldn't show command line and hooked vectors for TSR's that
  1030.       overwrote the low portion of the PSP with data
  1031.     - wouldn't find a program (using /C) whose name was stored in
  1032.       lowercase in the environment (noticed with Windows 3.0).
  1033.   RELNET
  1034.     - needed to restore less of the DOS variables table. Restoring
  1035.       something in the previously restored region sometimes disabled
  1036.       high memory access after the release
  1037.     - added /I option to prevent shutting down IPX events and sockets
  1038.   RAMFREE
  1039.     - now supports >640K free RAM
  1040.     - now adds RAMFREE's environment block to free memory reported
  1041.   WATCH
  1042.     - lost control of int 21 when FluShot+ grabbed it
  1043.     - didn't save vector change when a program grabbed int 27
  1044.     - didn't update stubs when a program grabbing int 21 or 27 was
  1045.       released
  1046.     - ended up rewriting WATCH again to solve these compatibility
  1047.       problems. The memory consumed by WATCH shrank by 1700 bytes as a
  1048.       result!
  1049.  
  1050. Version 3.0 10/12/91
  1051.   numerous changes to provide compatibility with MS-DOS 5.0 and
  1052.   programs loaded into high memory. See TSR30.DOC for details.
  1053.  
  1054. Version 2.9  5/4/89
  1055.   MAPMEM
  1056.     - fix problem when EMS is available but none is allocated
  1057.   DISABLE
  1058.     - fix problem when TSR to disable is last one loaded
  1059.     - disallow disable when patches would overlap (SK+)
  1060.     - add /O option to allow disable even for overlap (Periscope)
  1061.   RELEASE/RELNET
  1062.     - don't treat file marks as protected marks
  1063.  
  1064. Version 2.8  3/10/89
  1065.   add MARKNET/RELNET
  1066.   add DEVICE
  1067.   add extended memory reporting to MAPMEM
  1068.   add TSR detection capability to DISABLE
  1069.   treat file and net marks as protected in RELEASE
  1070.   add key stuffing routine to RELEASE
  1071.   remove 8259 revector routine from RELEASE (available in RELNET)
  1072.  
  1073. Version 2.7  3/4/89
  1074.   used for private testing of MARKNET/RELNET
  1075.  
  1076. Version 2.6  1/15/89
  1077.   fix problem in MARK/RELEASE when command processor is EXE file
  1078.   convert source to Turbo Pascal 5.0
  1079.  
  1080. Version 2.5  6/2/87
  1081.   version checks to avoid mixing different MARK/RELEASE
  1082. :
  1083. many intervening versions
  1084. :
  1085. Version 1.0  1/2/86
  1086.   initial version
  1087.  
  1088. For information about other versions, see the source files.
  1089.  
  1090.  
  1091. 9. Copyright and License Information
  1092. ---------------------------------------------------------------------
  1093. The TSR Utilities are Copyright (c) 1986,1991 by Kim Kokkonen. All
  1094. Rights Reserved.
  1095.  
  1096. Although these programs are copyrighted, you may distribute them
  1097. freely as long as you do not sell them or include them with other
  1098. software that you sell. The TSR Utilities may be distributed by user's
  1099. groups and shareware distributors for a fee not to exceed $10.
  1100. Otherwise, if you wish to sell the TSR Utilities, alone or as part of
  1101. another software package, please contact us for a license agreement.
  1102.  
  1103. These programs are not shareware: we're not asking for a donation.
  1104. However, if you request that we send you a new version, we'll ask for
  1105. $20 to cover our time and costs. The disk you receive will include the
  1106. latest version of the TSR Utilities, including the complete source
  1107. code.
  1108.  
  1109. We upload new versions of the TSR Utilities to LIB 6 of the PCVENB
  1110. forum on CompuServe. The executable programs are stored in a file
  1111. called TSRCOM.ZIP, and the source code is stored in a file called
  1112. TSRSRC.ZIP. From CompuServe, the programs fan out to public bulletin
  1113. boards around the world.
  1114.  
  1115. TurboPower Software also maintains a small bulletin board system just
  1116. for the purpose of downloading our software. The BBS number is
  1117. 719-260-9726. You'll find TSRCOM.EXE and TSRSRC.EXE in file area 2
  1118. (TurboPower Software Files). These are self-extracting archives. Our
  1119. BBS is a Wildcat! system; just follow the prompts to log in the first
  1120. time. Due to the transient nature of bulletin boards, we cannot
  1121. recommend other BBS's you should call to download the latest version.
  1122.  
  1123. The TSR Utilities were written by Kim Kokkonen of TurboPower Software,
  1124. with thanks to Neil Rubenking for the original idea behind MARK and
  1125. RELEASE. Special thanks also to Richard Wilson and Barry Simon at
  1126. Cal Tech for the idea that lead to FMARK, and for much useful
  1127. correspondence about the TSR Utilities. The TSR Utilities are written
  1128. in Turbo Pascal and assembly language.
  1129.  
  1130. You can reach Kim Kokkonen at:
  1131.  
  1132.      TurboPower Software
  1133.      P.O. Box 49009
  1134.      Colorado Springs, CO 80949-9009
  1135.  
  1136.      719-260-6641 (voice, Monday-Friday 9AM-5PM)
  1137.      719-260-7151 (fax)
  1138.      Compuserve: 76004,2611
  1139.